home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 51741 / 51741.xpi / chrome / content / lib / extensions.js < prev    next >
Text File  |  2010-02-01  |  391b  |  25 lines

  1. (function()
  2. {
  3.     //returns true if tab kit is installed
  4.     this.isThereTabKit = function()
  5.     {
  6.         if ('tabkit' in window)
  7.         {
  8.             return true;
  9.         }
  10.         else
  11.             return false;
  12.     }
  13.     //returns true if tree style tab is installed
  14.     this.isThereTreeStyleTab = function()
  15.     {
  16.         if ('TreeStyleTabService' in window)
  17.             return true;
  18.         else
  19.             return false;
  20.     }
  21.  
  22.     return null;
  23.  
  24. }).apply(metaTitleDescriptionOnTop);
  25.